home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / misc / amag / sh9301e.lha / Maxon-CPP-Demo / Include / setjmp.h < prev    next >
C/C++ Source or Header  |  1993-02-17  |  172b  |  11 lines

  1. #ifndef _INCLUDE_SETJMP_H
  2. #define _INCLUDE_SETJMP_H
  3.  
  4. #define _JMP_BUF_SIZE 16
  5. typedef int jmp_buf[_JMP_BUF_SIZE];
  6.  
  7. int setjmp(jmp_buf);
  8. void longjmp(jmp_buf, int);
  9.  
  10. #endif
  11.